home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / frefs11.lha / FetchRefs / Source / GenerateIndex / dmakefile < prev    next >
Makefile  |  1994-08-04  |  414b  |  22 lines

  1. SRC = GUI.c Lists.c Main.c Outline.c triton_lib.c
  2. OBJ = $(SRC:*.c:*.o)
  3.  
  4. GenerateIndex : $(OBJ)
  5.     dcc %(right) -o %(left) -mRR -2.0 -r -mS
  6.  
  7. GenerateIndex : protos.h
  8.  
  9. $(OBJ) : $(SRC)
  10.     dcc %(right) -o %(left) -mRR -mi -2.0 -Hdefs.m=defs.h -c -proto -r -mS
  11.  
  12. $(OBJ) : GenerateIndex.h
  13.  
  14. $(OBJ) : defs.m
  15.  
  16. protos.h : GUI.c Lists.c Main.c
  17.     mkproto >protos.h -s -p %(right)
  18.  
  19. defs.m : defs.h
  20.     -delete >NIL: defs.m
  21.  
  22.